home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / burmest.dxr / 00092.ls < prev    next >
Encoding:
Text File  |  1996-03-22  |  852 b   |  44 lines

  1. on enterFrame
  2.   global Gflag
  3.   set Gflag to 0
  4.   set the visible of sprite 2 to 0
  5. end
  6.  
  7. on mouseUp
  8.   if rollOver(1) then
  9.     go(1)
  10.   end if
  11. end
  12.  
  13. on exitFrame
  14.   if rollOver(22) then
  15.     if the visible of sprite 22 = 0 then
  16.       set the visible of sprite 22 to 1
  17.     end if
  18.   else
  19.     set the visible of sprite 22 to 0
  20.   end if
  21.   if rollOver(23) then
  22.     if the visible of sprite 23 = 0 then
  23.       set the visible of sprite 23 to 1
  24.     end if
  25.   else
  26.     set the visible of sprite 23 to 0
  27.   end if
  28.   if rollOver(24) then
  29.     if the visible of sprite 24 = 0 then
  30.       set the visible of sprite 24 to 1
  31.     end if
  32.   else
  33.     set the visible of sprite 24 to 0
  34.   end if
  35.   if rollOver(25) then
  36.     if the visible of sprite 25 = 0 then
  37.       set the visible of sprite 25 to 1
  38.     end if
  39.   else
  40.     set the visible of sprite 25 to 0
  41.   end if
  42.   go(the frame)
  43. end
  44.